home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / ans / chap10 / exer1001 / Exercise.java
Encoding:
Text File  |  1997-04-20  |  276 b   |  11 lines

  1.    void exercise() {
  2.       double d1 = Math.random() * Math.PI;
  3.       double d2 = Math.random() * Math.PI;
  4.  
  5.       double m = Math.max(d1, d2);
  6.  
  7.       System.out.println(Math.sin(m));
  8.       System.out.println(Math.cos(m));
  9.       System.out.println(Math.tan(m));
  10.    }
  11.